home *** CD-ROM | disk | FTP | other *** search
/ Programming a Multiplayer FPS in DirectX / Programming a Multiplayer FPS in DirectX (Companion CD).iso / Paint Shop Pro / PSP900enTR.exe / Data1.cab / _C13A83559C8842AE9A751687A9577306 < prev    next >
Encoding:
Text File  |  2004-08-16  |  771 b   |  30 lines

  1.  
  2. from JascApp import *
  3.  
  4. def ScriptProperties():
  5.     return {
  6.         'Author': u'Jasc Software, Inc.',
  7.         'Copyright': u'Copyright (c) 2003-2004 Jasc Software, Inc.  All rights reserved.',
  8.         'Description': 'Factory default preset for StrawWall effect',
  9.         'Host': 'Paint Shop Pro 8',
  10.         'Host Version': '8.00',
  11.         }
  12.  
  13. def Preset_StrawWall():
  14.     return {
  15.         'Width': 1,
  16.         'Length': 14,
  17.         'Angle': 100,
  18.         'Transparency': 0,
  19.         'Density': 15,
  20.         'Color': (85, 85, 85),
  21.         'GeneralSettings': {
  22.             'AutoActionMode': 0,
  23.             'ExecutionMode': 0
  24.             },
  25.         'Blur': 40
  26.         }
  27.  
  28. def Do(Environment):
  29.     App.Do( Environment, 'StrawWall', Preset_StrawWall())
  30.